library(connectwidgets) library(dplyr) library(stringr) knitr::opts_chunk$set(echo = FALSE, message = FALSE, warning = FALSE) client <- connect( server = Sys.getenv("CONNECT_SERVER"), api_key = Sys.getenv("CONNECT_API_KEY") ) all_content <- client %>% content() audit <- all_content %>% by_tag(tagnames = "Server Audit")
audit %>% filter(app_mode == "shiny") %>% rsc_card
audit %>% filter(app_mode == "rmd-static", str_detect(title, "Tool")) %>% rsc_table()
audit %>% filter(app_mode == "static", content_category == "pin") %>% rsc_grid
audit %>% filter(app_mode == "rmd-static", str_detect(title, "pin-")) %>% rsc_card()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.